import { notFound } from 'next/navigation' import { NextIntlClientProvider } from 'next-intl' import { ReactNode } from 'react' type Props = { children: ReactNode params: {locale: string} } export default async function LocaleLayout({ children, params: { locale }, }: Props) { let messages try { messages = (await import(`../../../messages/${locale}.json`)).default } catch (error) { notFound() } return (